home *** CD-ROM | disk | FTP | other *** search
- MyLib/strcpy MyLib/strcpy
-
- NAME
- strcpy - copy a string
-
- SYNOPSIS
- #include <string.h>
-
- char *strcpy(char *Destination, const char *Source);
-
- FUNCTION
- This function copies a string from Source to Dest.
-
- INPUTS
- Dest - pointer to the destination area
- Source - pointer to the source string
-
- RESULT
- The strcpy() function returns Dest.
-
- SEE ALSO
- stpcpy
-
- STANDARDS COMPLIANCE
- ANSI C3.159-1989, ISO 9899-1990
-